function showMsg()
{
  $msg = null;
  if(isset($_GET['id'])){
    $id = intval($_GET['id']);
    //lub
    //$id = filter_input(INPUT_GET, 'id', FILTER_VALIDATE_INT);
    if($id > 0){
      $msg = $this->getMsg($id);
    }
  }
  include 'tmpl/msg.tpl';
}
